home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / solaris26_106040.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  48 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12897);
  10.  script_version ("$Revision: 1.3 $");
  11.  name["english"] = "Solaris 2.6 (sparc) : 106040-18";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing Sun Security Patch number 106040-18
  17. ( X Input & Output Method patch).
  18.  
  19. You should install this patch for your system to be up-to-date.
  20.  
  21. Solution : http://sunsolve.sun.com/search/document.do?assetkey=1-21-106040-18-1
  22. Risk factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Check for patch 106040-18"; 
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "Solaris Local Security Checks";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("ssh_get_info.nasl");
  37.  script_require_keys("Host/Solaris/showrev");
  38.  exit(0);
  39. }
  40.  
  41.  
  42.  
  43. include("solaris.inc");
  44.  
  45. e =  solaris_check_patch(release:"5.6", arch:"sparc", patch:"106040-18", obsoleted_by:"", package:"SUNWxi18n SUNWxim.base SUNWxim.l10n");
  46.  
  47. if ( e < 0 ) security_hole(0);
  48.